home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 May: Tool Chest / Developer CD Series May 1996 (Tool Chest) (Apple Computer) (1996).iso / Tool Chest / Interfaces & Libraries / Interfaces / CIncludes / WCharTDef.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-05  |  355 b   |  20 lines  |  [TEXT/MPS ]

  1. /*
  2.     StdDef.h -- Common definitions
  3.     
  4.     Copyright Apple Computer,Inc.    1987-1990, 1994
  5.     All rights reserved.
  6.  
  7.     wchar_t - this type is defined only by stddef and stdlib.
  8. */
  9.  
  10. #ifndef __WCHARTDEF__
  11. #define __WCHARTDEF__
  12.  
  13.     #ifdef    __xlC
  14.         typedef unsigned short wchar_t;
  15.     #else    /* __xlC */
  16.         typedef short wchar_t;
  17.     #endif    /* __xlC */
  18.  
  19. #endif    /* __WCHARTDEF__ */
  20.